react-dj-table

git icon
Change theme

Identity Columns

IdentityColumns

NOTE #

Although identity columns are not required, where there is duplicate data, undesirable behaviour may result. For example row selection will cause duplicate rows to be selected. It is advisable to include an identity column.

The first column [0] is assumed to be the identity column unless specified using idCol.

Where possible identity columns should be a numerical json type.

Identity Column options #

   const options = {
idCol:"userid",
};
   <Table json={json} options={options} />

Identity columns, can be removed from the UI, see Hidden Columns